Ticket #358 (defect)

Opened 2 years ago

Last modified 2 years ago

Graphics corruption problem

Status: assigned

Reported by: fraca7 Assigned to: fraca7 (accepted)
Priority: major Component: psp2d
Version: current Keywords:
Cc:

Quite random

Change History

03/11/07 11:50:02: Modified by fraca7

  • status changed from new to assigned.

03/16/07 14:17:49: Modified by pspuser

Hi! This script always starts with corrupted graphics (tested 10/10).

import psp2d, pspos

pspos.setclock(222)
pspos.setbus(111)

screen = psp2d.Screen()
font = psp2d.Font('font.png')

while True:
  font.drawText(screen, 10, 40, "Hello world")
  font.drawText(screen, 10, 255, "Press X to exit")
  screen.swap()

  pad = psp2d.Controller()
  if pad.cross:
    break

Ciaooo Sakya

03/18/07 10:25:11: Modified by fraca7

Works for me. This problem seems to be highly random; sometimes I can reproduce it fifteen times in a row and then for no particlar reason it stops...

03/18/07 11:31:48: Modified by fraca7

  • component changed from pspnet to psp2d.
  • description changed.