Skip to content

Commit

Permalink
fixes to paths and bitwise
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperNiCd committed Aug 14, 2021
1 parent e58c382 commit e7f9182
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Bitwise.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ void Bitwise::process()
{
aVal = a[i] * INT32_MAX;
bVal = b[i] * INT32_MAX;
opVal = ~(aVal & bVal);
opVal = ~(aVal | bVal);
outVal = (float) opVal / INT32_MAX;
out[i] = outVal;
}
Expand All @@ -102,7 +102,7 @@ void Bitwise::process()
{
aVal = a[i] * INT32_MAX;
bVal = b[i] * INT32_MAX;
opVal = ~(aVal & bVal);
opVal = ~(aVal ^ bVal);
outVal = (float) opVal / INT32_MAX;
out[i] = outVal;
}
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

# Override these defaults on the commandline:
PKGNAME ?= Accents
PKGVERSION ?= 0.6.14
PKGVERSION ?= 0.6.15
LIBNAME ?= libAccents
ARCH ?= linux
PROFILE ?= testing
Expand Down
2 changes: 1 addition & 1 deletion toc.lua
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ local units = {
return {
title = "Accents",
name = "accents",
aliases = {"accents", "Accents"}
aliases = {"accents", "Accents"},
keyword = "accents",
author = "Joe",
units = units
Expand Down

0 comments on commit e7f9182

Please sign in to comment.