Epic failures in the game development field.

This blog covers funny/weird issues and bugs from games that happened during development.

Send your own contributions to igetyourfail at repi.se (can be anonymous if specified)

Monday, May 27, 2013

Perfectly skinned vertex normals


(Thanks to Rick Appleton for the submission)

Wednesday, May 22, 2013

Fast resource loading

bool Manager::loadResources()
{
    if (m_resourcesLoaded)
        return true;

    m_resourcesLoaded = true;

    return true;
}
(Thanks for the submission Graham)

Saturday, May 4, 2013

Everyone should have a critical section!

CriticalSection static Foo::getCriticalSection() { return c_csec; }
(Thanks for the submission Boberg)

Perforce changelist templates are very easy to use!

Change 1242010 on 2013/05/03 20:14:01 by xxx

    DESCRIPTION
 
    Tested on level LEVEL by NAME
    Tested on platform PLATFORM by NAME
    Reviewed by NAME

Followers