Skip to content

Commit

Permalink
Merge pull request #77289 from katemonster33/imgui_freetype_msvc_buil…
Browse files Browse the repository at this point in the history
…d_broken

Added imgui_freetype.cpp to MSVC project file to fix broken build.
  • Loading branch information
Maleclypse authored Oct 24, 2024
2 parents 8d2de7b + c7cc651 commit 2d90bfe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions msvc-full-features/ImGui-lib-vcpkg-static.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
<ClCompile Include="..\src\third-party\imgui\imgui.cpp" />
<ClCompile Include="..\src\third-party\imgui\imgui_demo.cpp" />
<ClCompile Include="..\src\third-party\imgui\imgui_draw.cpp" />
<ClCompile Include="..\src\third-party\imgui\imgui_freetype.cpp" />
<ClCompile Include="..\src\third-party\imgui\imgui_impl_sdl2.cpp" />
<ClCompile Include="..\src\third-party\imgui\imgui_impl_sdlrenderer2.cpp" />
<ClCompile Include="..\src\third-party\imgui\imgui_tables.cpp" />
Expand Down
2 changes: 1 addition & 1 deletion src/bionics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -928,7 +928,7 @@ bool Character::activate_bionic( bionic &bio, bool eff_only, bool *close_bionics
add_msg_if_player( m_info, _( "You can now run faster, assisted by joint servomotors." ) );
} else if( bio.id == bio_lighter ) {
const std::optional<tripoint> pnt = choose_adjacent( _( "Start a fire where?" ) );
if( pnt && here.is_flammable( *pnt ) && !here.get_field( *pnt, fd_fire ) ) {
if( pnt && here.is_flammable( *pnt ) && !here.get_field( tripoint_bub_ms( *pnt ), fd_fire ) ) {
add_msg_activate();
here.add_field( *pnt, fd_fire, 1 );
if( has_trait( trait_PYROMANIA ) ) {
Expand Down

0 comments on commit 2d90bfe

Please sign in to comment.