#43356 - Mr Snowflake - Sun May 22, 2005 6:49 pm
Why is this working:
I expected it to work like this:
Which would be more natural!
| Code: |
|
if(!(IPC->buttons & IPC_PEN_DOWN)) consolePrintf("Touched! "); else consolePrintf("Not touched!"); |
I expected it to work like this:
| Code: |
|
if(IPC->buttons & IPC_PEN_DOWN) consolePrintf("Touched! "); else consolePrintf("Not touched!"); |
Which would be more natural!