1
0
mirror of https://github.com/FunkyFr3sh/cnc-ddraw.git synced 2025-03-24 17:49:52 +01:00

remove const

This commit is contained in:
FunkyFr3sh 2023-09-02 23:09:10 +02:00
parent 28511a368e
commit 5edeaeed51

View File

@ -130,8 +130,8 @@ void dbg_init()
if (wine_get_host_version) if (wine_get_host_version)
{ {
const char* sysname = NULL; char* sysname = NULL;
const char* release = NULL; char* release = NULL;
wine_get_host_version(&sysname, &release); wine_get_host_version(&sysname, &release);