Commit 66de021c authored by Bob Pendleton's avatar Bob Pendleton

volitile... duh, yeah the variable need to be labeled volitile

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403698
parent 29167b57
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
...@@ -23,16 +23,16 @@ int ...@@ -23,16 +23,16 @@ int
main(int argc, char **argv) main(int argc, char **argv)
{ {
Uint8 val8 = 0; volatile Uint8 val8 = 0;
Uint8 ret8 = 0; Uint8 ret8 = 0;
Uint16 val16 = 0; volatile Uint16 val16 = 0;
Uint16 ret16 = 0; Uint16 ret16 = 0;
Uint32 val32 = 0; volatile Uint32 val32 = 0;
Uint32 ret32 = 0; Uint32 ret32 = 0;
Uint64 val64 = 0; volatile Uint64 val64 = 0;
Uint64 ret64 = 0; Uint64 ret64 = 0;
SDL_bool tfret = SDL_FALSE; SDL_bool tfret = SDL_FALSE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment