Files @ r28126:9f842b8811bc
Branch filter:

Location: cpp/openttd-patchpack/source/src/game/CMakeLists.txt

Jonathan G Rennison
Codechange: Replace AllocatedStringParameters with ArrayStringParameters (#11452)

All uses of AllocatedStringParameters are with a compile-time fixed
constant.
Use of a dynamically allocated buffer on the heap is unnecessary and
increases overhead, particularly due to frequent use as a temporary.
add_files(
    game.hpp
    game_config.cpp
    game_config.hpp
    game_core.cpp
    game_gui.cpp
    game_gui.hpp
    game_info.cpp
    game_info.hpp
    game_instance.cpp
    game_instance.hpp
    game_scanner.cpp
    game_scanner.hpp
    game_text.cpp
    game_text.hpp
)