diff options
-rw-r--r-- | src/keeper.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/keeper.c b/src/keeper.c index ea061ce..dcb3708 100644 --- a/src/keeper.c +++ b/src/keeper.c | |||
@@ -702,9 +702,7 @@ void init_keepers( struct s_Universe* U, lua_State* L) | |||
702 | call_on_state_create( U, K, L, eLM_ToKeeper); | 702 | call_on_state_create( U, K, L, eLM_ToKeeper); |
703 | 703 | ||
704 | // to see VM name in Decoda debugger | 704 | // to see VM name in Decoda debugger |
705 | lua_pushliteral( K, "Keeper #"); // "Keeper #" | 705 | lua_pushfstring( K, "Keeper #%d", i + 1); // "Keeper #n" |
706 | lua_pushinteger( K, i + 1); // "Keeper #" n | ||
707 | lua_concat( K, 2); // "Keeper #n" | ||
708 | lua_setglobal( K, "decoda_name"); // | 706 | lua_setglobal( K, "decoda_name"); // |
709 | 707 | ||
710 | // create the fifos table in the keeper state | 708 | // create the fifos table in the keeper state |