Author: jrieks
Date: Tue Apr 12 11:53:44 2005
New Revision: 7818
Modified:
trunk/runtime/parrot/library/SDL/StopWatch.imc
Log:
fixed minesweeper
Modified: trunk/runtime/parrot/library/SDL/StopWatch.imc
==============================================================================
--- trunk/runtime/parrot/library/SDL/StopWatch.imc (original)
+++ trunk/runtime/parrot/library/SDL/StopWatch.imc Tue Apr 12 11:53:44 2005
@@ -129,7 +129,8 @@
time $N0
start = $N0
- addWatch( self )
+ $P0 = find_global "SDL::StopWatch::Timer", "addWatch"
+ $P0( self )
END:
.end
@@ -167,7 +168,8 @@
total = $N0
start = 0
- removeWatch( self )
+ $P0 = find_global "SDL::StopWatch::Timer", "removeWatch"
+ $P0( self )
END:
.end