Skip to content

Commit

Permalink
Merge branch 'maint16_2'
Browse files Browse the repository at this point in the history
  • Loading branch information
tturocy committed Aug 20, 2024
2 parents b0eaf78 + f57c766 commit cd80351
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pygambit/util.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ std::string WriteGame(const Game &p_game, const std::string &p_format)
else if (p_format == "sgame") {
return LaTeXGameWriter().Write(p_game);
}
else if (p_format == "native") {
else if (p_format == "native" || p_format == "nfg" || p_format == "efg") {
std::ostringstream f;
p_game->Write(f, p_format);
return f.str();
Expand Down

0 comments on commit cd80351

Please sign in to comment.