Files @ r26309:7005b7199dfe
Branch filter:

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

Patric Stout
Fix: commands with Axis in their arguments were not validated properly (#9943)

When you don't type an Enum, it is a signed value. To validate
if an Axis is valid, it is checked to be lower than AXIS_END. Which
is the case for any value below 0.
1
2
3
4
add_files(
    os2.cpp
    CONDITION OPTION_OS2
)