diff --git a/hw/xbox/nv2a.c b/hw/xbox/nv2a.c index ddd9ce5be8..dd2860b358 100644 --- a/hw/xbox/nv2a.c +++ b/hw/xbox/nv2a.c @@ -2182,7 +2182,7 @@ static TextureBinding* generate_texture(const TextureShape s, s.color_format, f.linear ? "" : " (SZ)", s.width); if (f.linear) { - /* Can't handle retarded strides */ + /* Can't handle strides unaligned to pixels */ assert(s.pitch % f.bytes_per_pixel == 0); glPixelStorei(GL_UNPACK_ROW_LENGTH, s.pitch / f.bytes_per_pixel); @@ -2214,7 +2214,7 @@ static TextureBinding* generate_texture(const TextureShape s, for (level = 0; level < s.levels; level++) { if (width < 1) width = 1; if (height < 1) height = 1; - if (f.gl_format == 0) { /* retarded way of indicating compressed */ + if (f.gl_format == 0) { /* compressed */ unsigned int block_size; if (f.gl_internal_format == GL_COMPRESSED_RGBA_S3TC_DXT1_EXT) { block_size = 8; diff --git a/hw/xbox/xbox_pci.c b/hw/xbox/xbox_pci.c index 2f8f0b459e..8e119536aa 100644 --- a/hw/xbox/xbox_pci.c +++ b/hw/xbox/xbox_pci.c @@ -339,7 +339,7 @@ static void xbox_lpc_reset(DeviceState *dev) * * We need to be able to disable it at runtime, and * it shouldn't be visible ontop of the bios mirrors. It'll have to - * be a retarded hack. + * be a hack. * * Be lazy for now and just write it ontop of the bios. *