summaryrefslogtreecommitdiff
path: root/src/functiondisplay.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2011-12-29 15:53:38 -0700
committerMike Buland <eichlan@xagasoft.com>2011-12-29 15:53:38 -0700
commit1bd7f709f5217b248fcb3a4c7be2eeca84fec795 (patch)
tree9c146a63d57eb60542b22271dfdcec363ae2af84 /src/functiondisplay.cpp
parent162ccd918698f53ef9ff7ba80091969d93aa789d (diff)
downloadstage-1bd7f709f5217b248fcb3a4c7be2eeca84fec795.tar.gz
stage-1bd7f709f5217b248fcb3a4c7be2eeca84fec795.tar.bz2
stage-1bd7f709f5217b248fcb3a4c7be2eeca84fec795.tar.xz
stage-1bd7f709f5217b248fcb3a4c7be2eeca84fec795.zip
This commit...I dunno
I'm using a different version of everything, and I don't know if it's forward compatible or not.
Diffstat (limited to 'src/functiondisplay.cpp')
-rw-r--r--src/functiondisplay.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/functiondisplay.cpp b/src/functiondisplay.cpp
index 16b1175..332a2c9 100644
--- a/src/functiondisplay.cpp
+++ b/src/functiondisplay.cpp
@@ -15,7 +15,7 @@ FunctionDisplay::~FunctionDisplay()
15 15
16Variable FunctionDisplay::call( class GameState &gState ) 16Variable FunctionDisplay::call( class GameState &gState )
17{ 17{
18 Variable v = gState.pop(); 18 Variable v = gState.popDeref();
19 sio << "Display: " << v << sio.nl; 19 sio << "Display: " << v << sio.nl;
20} 20}
21 21