Skip to content

Commit

Permalink
Doc: fix Lua callin names in springsetting descs
Browse files Browse the repository at this point in the history
  • Loading branch information
sprunk committed Jul 9, 2023
1 parent ee87f0d commit 1c21706
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions rts/Map/SMF/SMFGroundDrawer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ CONFIG(int, MaxDynamicMapLights)

CONFIG(bool, AdvMapShading).defaultValue(true).safemodeValue(false).description("Enable shaders for terrain rendering.");
CONFIG(bool, AllowDeferredMapRendering).defaultValue(false).safemodeValue(false).description("Enable rendering the map to the map deferred buffers.");
CONFIG(bool, AllowDrawMapPostDeferredEvents).defaultValue(false).description("Enable DrawMapPostDeferred Lua callins.");
CONFIG(bool, AllowDrawMapDeferredEvents).defaultValue(false).description("Enable DrawMapDeferred Lua callins.");
CONFIG(bool, AllowDrawMapPostDeferredEvents).defaultValue(false).description("Enable DrawGroundPostDeferred Lua callin.");
CONFIG(bool, AllowDrawMapDeferredEvents).defaultValue(false).description("Enable DrawGroundDeferred Lua callin.");


CONFIG(int, ROAM)
Expand Down
2 changes: 1 addition & 1 deletion rts/Rendering/LuaObjectDrawer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
// applies to both units and features
CONFIG(bool, AllowDeferredModelRendering).defaultValue(false).safemodeValue(false).description("Allows the rendering of model deferred buffers.");
CONFIG(bool, AllowDeferredModelBufferClear).defaultValue(false).safemodeValue(false);
CONFIG(bool, AllowDrawModelPostDeferredEvents).defaultValue(true).description("Enable DrawModelPostDeferred Lua callins.");
CONFIG(bool, AllowDrawModelPostDeferredEvents).defaultValue(true).description("Enable Draw{Units,Features}PostDeferred Lua callins.");
CONFIG(bool, AllowMultiSampledFrameBuffers).defaultValue(false).description("Enable FBOs that can have multisampled anti-aliasing.");;

CONFIG(float, LODScale).defaultValue(1.0f);
Expand Down

0 comments on commit 1c21706

Please sign in to comment.