002
01.01.2005, 13:18 Uhr
RedEagle
|
Geht leider nicht, hab ich auch schon versucht
| C++: |
void xyz(Objekt ** uebergabe);
//...
xyz(das_objekt[22][33]);
|
| Fehler: |
cannot convert `Objekt' to `Objekt**' for argument `2' to `void
|
---------------------------------------------------------------------------------------
Hier mal die Originale Funktion:
| C++: |
Objekt map[25][82];
//...
void show_fight_area(Einheit einheit, Objekt ** area, Color background, Color text);
//...
show_fight_area(test, map[25][82], bg, tc);
|
-- MFG RedEagle Dieser Post wurde am 01.01.2005 um 13:19 Uhr von RedEagle editiert. |