Skip to content

Commit

Permalink
Added missing keybinding mention to 'ls', DFusion hotfix.
Browse files Browse the repository at this point in the history
  • Loading branch information
peterix committed Feb 6, 2012
1 parent 0c79682 commit 8f1a2eb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ set(DF_VERSION_MINOR "31")
set(DF_VERSION_PATCH "25")
set(DF_VERSION "${DF_VERSION_MAJOR}.${DF_VERSION_MINOR}.${DF_VERSION_PATCH}")

set(DFHACK_RELEASE "9")
set(DFHACK_RELEASE "9a")

## where to install things (after the build is done, classic 'make install' or package structure)
# the dfhack libraries will be installed here:
Expand Down
1 change: 1 addition & 0 deletions library/Core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,7 @@ static void runInteractiveCommand(Core *core, PluginManager *plug_mgr, int &clue
" cls - Clear the console.\n"
" fpause - Force DF to pause.\n"
" die - Force DF to close immediately\n"
" keybinding - Modify bindings of commands to keys\n"
" belongs COMMAND - Tell which plugin a command belongs to.\n"
" plug [PLUGIN|v] - List plugin state and detailed description.\n"
" load PLUGIN|all - Load a plugin by name or load all possible plugins.\n"
Expand Down
4 changes: 2 additions & 2 deletions plugins/Dfusion/src/lua_Process.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -175,9 +175,9 @@ static int lua_Process_getMemRanges(lua_State *S)
{
st.push(i);
st.newtable();
st.push(ranges[i].start); // WARNING!! lua has only 32bit numbers, possible loss of data!!
st.push((uint32_t)ranges[i].start); // WARNING!! lua has only 32bit numbers, possible loss of data!!
st.setfield("start");
st.push(ranges[i].end);
st.push((uint32_t)ranges[i].end);
st.setfield("end");
st.push(std::string(ranges[i].name));
st.setfield("name");
Expand Down

0 comments on commit 8f1a2eb

Please sign in to comment.