popn: distinguish between hpm and new popn (#619)

## Link to GitHub Issue or related Pull Request, if one exists
#618

## Description of change
Enhance game detection logic.

Fix heap size.
This commit is contained in:
bicarus
2026-04-09 19:54:27 -07:00
committed by GitHub
parent 7b4227d2a9
commit ca70f7b19c
6 changed files with 88 additions and 56 deletions
+5
View File
@@ -1,9 +1,14 @@
#pragma once
#include "avs/game.h"
#include "games/game.h"
namespace games::popn {
static inline bool is_pikapika_model() {
return (avs::game::is_model("M39") && avs::game::SPEC[0] == 'D');
}
class POPNGame : public games::Game {
public:
POPNGame();