aboutsummaryrefslogtreecommitdiff
path: root/sword2/sword2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sword2/sword2.cpp')
-rw-r--r--sword2/sword2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/sword2/sword2.cpp b/sword2/sword2.cpp
index 9cbc42af41..f3f288dac0 100644
--- a/sword2/sword2.cpp
+++ b/sword2/sword2.cpp
@@ -213,7 +213,7 @@ int32 GameCycle(void) {
// do one game cycle
//got a screen to run?
- if (LLogic.Return_run_list()) {
+ if (LLogic.getRunList()) {
//run the logic session UNTIL a full loop has been performed
do {
// reset the graphic 'buildit' list before a new
@@ -226,7 +226,7 @@ int32 GameCycle(void) {
// keep going as long as new lists keep getting put in
// - i.e. screen changes
- } while (LLogic.Process_session());
+ } while (LLogic.processSession());
} else {
// start the console and print the start options perhaps?
StartConsole();