Re: [hatari-devel] Hatari debug mode |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/hatari-devel Archives
]
- To: hatari-devel@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [hatari-devel] Hatari debug mode
- From: Andreas Grabher <andreas_g86@xxxxxxxxxx>
- Date: Tue, 19 Aug 2025 13:36:54 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=icloud.com; s=1a1hai; bh=r3kSAErNORDG015dBFHsoNsHGoFAEMW3FNOu0yycxhI=; h=Content-Type:From:Mime-Version:Subject:Date:Message-Id:To:x-icloud-hme; b=b9RY4svhwnXXY27eOkS653vVU3fH1TQ9TzW+Osk3d+Ir7rNJlcsXhVOzjirgYypnwZ6xUyhElYDfItmDM7vhBH/YNk0tYcnbUh3j/pAQ8UfzILhZbUnJWiQj2EL1TKQdyGW5j0Ks/KjZItaKi6X99OYUL6FagD1HKZF2bYC27T6P561SIF+Y2MOAfdN+h1ZlXd0pwALEX1jAgjKx0dW6R+KAsVuDC086OJo1mVov4RJCnlN/a1nf0zvpiCrtAaEqk9KYfDalz2wW/sAxuyMj1upS5RuOpm62atp57T7BK2oOSX9hd9eHHxZ/Q4/xAhJgWqZZtoQs5SQH6Tq7b+v92w==
> Am 19.08.2025 um 10:13 schrieb Eero Tamminen <oak@xxxxxxxxxxxxxx>:
>
> Hi,
>
> The change is now pushed.
>
>
> - Eero
>
I know this is likely to be ignored like my other notes and patches on broken code structure but for my peace of mind:
The way you include opencon.h in debugui.c is not the way this is usually done in Hatari.
#include "../gui-win/opencon.h"
should be replaced by just
#include "opencon.h"
and in src/debug/CMakeLists.txt
include_directories(${SDL2_INCLUDE_DIRS})
should be replaced by
include_directories(${SDL2_INCLUDE_DIRS} ../gui-win)