mirror of
https://github.com/kanjitalk755/macemu.git
synced 2024-12-23 19:29:18 +00:00
fixed const-ness
This commit is contained in:
parent
23b0bda1a5
commit
c6a52b6eb2
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* name_registry.cpp - Name Registry handling
|
* name_registry.cpp - Name Registry handling
|
||||||
*
|
*
|
||||||
* SheepShaver (C) 1997-2008 Christian Bauer and Marc Hellwig
|
* SheepShaver (C) Christian Bauer and Marc Hellwig
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
@ -103,7 +103,7 @@ void DoPatchNameRegistry(void)
|
|||||||
|
|
||||||
// Create "PowerPC,60x"
|
// Create "PowerPC,60x"
|
||||||
SheepRegEntryID power_pc;
|
SheepRegEntryID power_pc;
|
||||||
char *str;
|
const char *str;
|
||||||
switch (PVR >> 16) {
|
switch (PVR >> 16) {
|
||||||
case 1: // 601
|
case 1: // 601
|
||||||
str = "PowerPC,601";
|
str = "PowerPC,601";
|
||||||
|
Loading…
Reference in New Issue
Block a user