I upload on OS4depot My project Pixy Alpha version
Pixy and hollywood this crash but i don't understand why
https://amitheme.amiga-ng.org/amiga/Pixy/Crashlog.lha
Please Help me
Then it's getting difficult to fix it but from looking at the crashlog this doesn't really seem to be a Hollywood or MUI Royale bug anyway since the crash apparently occurs in newlib called from codesets.library. Are you running some beta components of OS4 or a beta version of newlib.library? Also check if you have the latest codesets.library.
I just gave a quick try at Pixy for MorphOS, and I have to say...I upload on OS4depot My project Pixy Alpha version
I downloaded the program from MorphOS Storage now and had a quick test.
Code: Select all
; StringsCat$[0]
Non enregistré
; StringsCat$[1]
commerçe
; StringsCat$[2]
Vidéo
; StringsCat$[3]
Eté
Code: Select all
/* Nouveau projet Hollywood */
; This is our default English catalog
def$ = {}
def$[0] = "Unregistred"
def$[1] = "Copyright 2016 - 2021 @"
def$[2] = "VIDE"
def$[3] = "VIDE"
OpenCatalog("Pixy.catalog")
; If Hollywood.catalog is not available
StringsCat$={}
For k = 0 To listitems(def$)-1
;StringsCat$[k] = GetCatalogString(k, def$[k])
StringsCat$[k] = ConvertStr(GetCatalogString(k, def$[k]),#ENCODING_AMIGA,#ENCODING_UTF8)
Next
CloseCatalog()
For i=0 TO listitems(def$)-1
debugprint(i,StringsCat$[i])
NEXT
EscapeQuit(True)
/* Boucle infinie */
Repeat
WaitEvent
Forever