diff options
-rw-r--r-- | backends/plugins/gp2xwiz/gp2xwiz-provider.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/plugins/gp2xwiz/gp2xwiz-provider.cpp b/backends/plugins/gp2xwiz/gp2xwiz-provider.cpp index 2219f4275b..859ac8fbc8 100644 --- a/backends/plugins/gp2xwiz/gp2xwiz-provider.cpp +++ b/backends/plugins/gp2xwiz/gp2xwiz-provider.cpp @@ -96,7 +96,7 @@ bool GP2XWIZPluginProvider::isPluginFilename(const Common::FSNode &node) const { // Check the plugin suffix Common::String filename = node.getName(); printf("Testing name %s", filename.c_str()); - if (!filename.hasSuffix(".PLG") && !filename.hasSuffix(".plg")) { + if (!filename.hasSuffix(".PLG") && !filename.hasSuffix(".plg") && !filename.hasSuffix(".PLUGIN") && !filename.hasSuffix(".plugin")) { printf(" fail.\n"); return false; } |