CogTool-Modern / cogtool

Predictive human performance modeling for UI/UX design
https://www.cogtool.org
GNU Lesser General Public License v2.1
17 stars 1 forks source link

Failed to detect Modern Intel Mac #4

Closed justingeeslin closed 4 years ago

justingeeslin commented 4 years ago

On my mac, macOS Catalina 10.15.4, running CogTool reveals the following error message:

CogTool no longer runs on PowerPC

The System.getProperty("os.arch") returns the string x86_64.

Inside CogTool there is the conditional like so which results in calling a modern mac a powerPC.

            if (osArch.toLowerCase().equals("i386")) {
                return true; // Intel
            }
            else {
                return false; // PowerPC
            }
justingeeslin commented 4 years ago

Closed in develop branch.